Fixed the GtkSignalFunc typedef to read "(void)" instead of "()", which
authorNat Friedman <nat@src.gnome.org>
Thu, 13 Aug 1998 19:03:48 +0000 (19:03 +0000)
committerNat Friedman <nat@src.gnome.org>
Thu, 13 Aug 1998 19:03:48 +0000 (19:03 +0000)
Fixed the GtkSignalFunc typedef to read "(void)" instead of "()", which was
causing it to not build on my irix machine.

gtk/gtktypeutils.h

index c2b3668b96d0d195efc43347ff5257a15c217ac9..fd80bea06812a7730fbf54cedf6d01f14d041721 100644 (file)
@@ -100,7 +100,7 @@ typedef struct _GtkEnumValue   GtkFlagValue;
 
 typedef void (*GtkClassInitFunc)   (gpointer   klass);
 typedef void (*GtkObjectInitFunc)  (gpointer   object);
-typedef void (*GtkSignalFunc)      ();
+typedef void (*GtkSignalFunc)      (void);
 typedef gint (*GtkFunction)       (gpointer   data);
 typedef void (*GtkDestroyNotify)   (gpointer   data);
 typedef void (*GtkCallbackMarshal) (GtkObject *object,